home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / httrack-3.33.exe / {app} / src / htsbase.h < prev    next >
C/C++ Source or Header  |  2005-02-05  |  10KB  |  380 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: Basic definitions                                      */
  34. /*       Used in .c files for basic (malloc() ..) definitions   */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38. #ifndef HTS_BASICH
  39. #define HTS_BASICH
  40.  
  41. #ifdef __cplusplus
  42. extern "C" {
  43. #endif
  44.  
  45. #include "htsglobal.h"
  46.  
  47. #include <string.h>
  48. #include <time.h>
  49.  
  50. #ifdef HAVE_UNISTD_H
  51. #include <unistd.h>
  52. #endif
  53. #ifdef HAVE_SYS_TYPES_H
  54. #include <sys/types.h>
  55. #endif
  56. #ifdef HAVE_SYS_STAT_H
  57. #include <sys/stat.h>
  58. #endif
  59. #ifdef HAVE_DLFCN_H
  60. #include <dlfcn.h>
  61. #endif
  62.  
  63. #ifndef _WIN32
  64. #include <errno.h>
  65. #endif
  66.  
  67. #if HTS_WIN
  68. #else
  69. #include <fcntl.h>
  70. #endif
  71. #include <assert.h>
  72.  
  73. #undef min
  74. #undef max
  75. #define min(a,b) ((a)>(b)?(b):(a))
  76. #define max(a,b) ((a)>(b)?(a):(b))
  77.  
  78. #ifndef _WIN32
  79. #undef Sleep
  80. #define min(a,b) ((a)>(b)?(b):(a))
  81. #define max(a,b) ((a)>(b)?(a):(b))
  82. #define Sleep(a) { if (((a)*1000)%1000000) usleep(((a)*1000)%1000000); if (((a)*1000)/1000000) sleep(((a)*1000)/1000000); }
  83. #endif
  84.  
  85. // teste ΘgalitΘ de 2 chars, case insensitive
  86. #define hichar(a) ((((a)>='a') && ((a)<='z')) ? ((a)-('a'-'A')) : (a))
  87. #define streql(a,b) (hichar(a)==hichar(b))
  88.  
  89. // caractΦre maj
  90. #define isUpperLetter(a) ( ((a) >= 'A') && ((a) <= 'Z') )
  91.  
  92.  
  93. /* Library internal definictions */
  94. #ifdef HTS_INTERNAL_BYTECODE
  95.  
  96.  
  97. // functions
  98. #ifdef _WIN32
  99. #define DynamicGet(handle, sym) GetProcAddress(handle, sym)
  100. #else
  101. #define DynamicGet(handle, sym) dlsym(handle, sym)
  102. #endif
  103.  
  104. // emergency log
  105. typedef void (*t_abortLog)(char* msg, char* file, int line);
  106. extern HTSEXT_API t_abortLog abortLog__;
  107. #define abortLog(a) abortLog__(a, __FILE__, __LINE__)
  108. #define _ ,
  109. #ifndef _WIN32_WCE
  110. #define abortLogFmt(a) do { \
  111.   FILE* fp = fopen("CRASH.TXT", "wb"); \
  112.   if (!fp) fp = fopen("/tmp/CRASH.TXT", "wb"); \
  113.   if (!fp) fp = fopen("C:\\CRASH.TXT", "wb"); \
  114.   if (!fp) fp = fopen("\\Temp\\CRASH.TXT", "wb"); \
  115.   if (!fp) fp = fopen("\\CRASH.TXT", "wb"); \
  116.   if (!fp) fp = fopen("CRASH.TXT", "wb"); \
  117.   if (fp) { \
  118.     fprintf(fp, "HTTrack " HTTRACK_VERSIONID " closed at '" __FILE__ "', line %d\r\n", __LINE__); \
  119.     fprintf(fp, "Reason:\r\n"); \
  120.     fprintf(fp, a); \
  121.     fprintf(fp, "\r\n"); \
  122.     fflush(fp); \
  123.     fclose(fp); \
  124.   } \
  125. } while(0)
  126. #else
  127. #define abortLogFmt(a) do { \
  128.   XCEShowMessageA("HTTrack " HTTRACK_VERSIONID " closed at '" __FILE__ "', line %d\r\nReason:\r\n%s\r\n", __LINE__, a); \
  129. } while(0)
  130. #endif
  131.  
  132. #define assertf(exp) do { \
  133.   if (! ( exp ) ) { \
  134.     abortLog("assert failed: " #exp); \
  135.     if (htsCallbackErr != NULL) { \
  136.       htsCallbackErr("assert failed: " #exp, __FILE__ , __LINE__ ); \
  137.     } \
  138.     assert(exp); \
  139.     abort(); \
  140.   } \
  141. } while(0)
  142. /* non-fatal assert */
  143. #define assertnf(exp) do { \
  144.   if (! ( exp ) ) { \
  145.     abortLog("assert failed: " #exp); \
  146.     if (htsCallbackErr != NULL) { \
  147.       htsCallbackErr("assert failed: " #exp, __FILE__ , __LINE__ ); \
  148.     } \
  149.   } \
  150. } while(0)
  151.  
  152.  
  153. /* regular malloc's() */
  154. #ifndef HTS_TRACE_MALLOC
  155. #define malloct(A)          malloc(A)
  156. #define calloct(A,B)        calloc((A), (B))
  157. #define freet(A)            do { assertnf((A) != NULL); if ((A) != NULL) { free(A); (A) = NULL; } } while(0)
  158. #define strdupt(A)          strdup(A)
  159. #define realloct(A,B)       ( ((A) != NULL) ? realloc((A), (B)) : malloc(B) )
  160. #define memcpybuff(A, B, N) memcpy((A), (B), (N))
  161. #else
  162. /* debug version */
  163. #define malloct(A)    hts_malloc(A)
  164. #define calloct(A,B)  hts_calloc(A,B)
  165. #define strdupt(A)    hts_strdup(A)
  166. #define freet(A)      do { hts_free(A); (A) = NULL; } while(0)
  167. #define realloct(A,B) hts_realloc(A,B)
  168. void  hts_freeall();
  169. void* hts_malloc    (size_t);
  170. void* hts_calloc(size_t,size_t);
  171. char* hts_strdup(char*);
  172. void* hts_xmalloc(size_t,size_t);
  173. void  hts_free      (void*);
  174. void* hts_realloc   (void*,size_t);
  175. mlink* hts_find(char* adr);
  176. /* protected memcpy */
  177. #define memcpybuff(A, B, N) do { \
  178.   mlink* lnk = hts_find((void*)(A)); \
  179.   if (lnk != NULL) { \
  180.     assertf(lnk != NULL); \
  181.     assertf( * ( (t_htsboundary*) ( ((char*) lnk->adr) - sizeof(htsboundary) ) ) == htsboundary ); \
  182.     assertf( * ( (t_htsboundary*) ( ((char*) lnk->adr) + lnk->len ) ) == htsboundary ); \
  183.     assertf( ( ((char*)(A)) + (N)) < (char*) (lnk->adr + lnk->len) ); \
  184.   } \
  185.   memcpy(A, B, N); \
  186. } while(0)
  187.  
  188. #endif
  189.  
  190. typedef void (* htsErrorCallback)(char* msg, char* file, int line);
  191. extern HTSEXT_API htsErrorCallback htsCallbackErr;
  192. extern HTSEXT_API int htsMemoryFastXfr;
  193.  
  194. /*
  195. */
  196.  
  197.  
  198. #ifdef STRDEBUG
  199.  
  200. /* protected strcat, strncat and strcpy - definitely useful */
  201. #define strcatbuff(A, B) do { \
  202.   assertf( (A) != NULL ); \
  203.   if ( ! (B) ) { assertf( 0 ); } \
  204.   if (htsMemoryFastXfr) { \
  205.     if (sizeof(A) != sizeof(char*)) { \
  206.       (A)[sizeof(A) - 1] = '\0'; \
  207.     } \
  208.     strcat(A, B); \
  209.     if (sizeof(A) != sizeof(char*)) { \
  210.       assertf((A)[sizeof(A) - 1] == '\0'); \
  211.     } \
  212.   } else { \
  213.     unsigned int sz = (unsigned int) strlen(A); \
  214.     unsigned int szf = (unsigned int) strlen(B); \
  215.     if (sizeof(A) != sizeof(char*)) { \
  216.       assertf(sz + szf + 1 < sizeof(A)); \
  217.       if (szf > 0) { \
  218.         if (sz + szf + 1 < sizeof(A)) { \
  219.           memcpy((A) + sz, (B), szf + 1); \
  220.         } \
  221.       } \
  222.     } else if (szf > 0) { \
  223.       memcpybuff((A) + sz, (B), szf + 1); \
  224.     } \
  225.   } \
  226. } while(0)
  227. #define strncatbuff(A, B, N) do { \
  228.   assertf( (A) != NULL ); \
  229.   if ( ! (B) ) { assertf( 0 ); } \
  230.   if (htsMemoryFastXfr) { \
  231.     if (sizeof(A) != sizeof(char*)) { \
  232.       (A)[sizeof(A) - 1] = '\0'; \
  233.     } \
  234.     strncat(A, B, N); \
  235.     if (sizeof(A) != sizeof(char*)) { \
  236.       assertf((A)[sizeof(A) - 1] == '\0'); \
  237.     } \
  238.   } else { \
  239.     unsigned int sz = (unsigned int) strlen(A); \
  240.     unsigned int szf = (unsigned int) strlen(B); \
  241.     if (szf > (unsigned int) (N)) szf = (unsigned int) (N); \
  242.     if (sizeof(A) != sizeof(char*)) { \
  243.       assertf(sz + szf + 1 < sizeof(A)); \
  244.       if (szf > 0) { \
  245.         if (sz + szf + 1 < sizeof(A)) { \
  246.           memcpy((A) + sz, (B), szf); \
  247.           * ( (A) + sz + szf) = '\0'; \
  248.         } \
  249.       } \
  250.     } else if (szf > 0) { \
  251.       memcpybuff((A) + sz, (B), szf); \
  252.       * ( (A) + sz + szf) = '\0'; \
  253.     } \
  254.   } \
  255. } while(0)
  256. #define strcpybuff(A, B) do { \
  257.   assertf( (A) != NULL ); \
  258.   if ( ! (B) ) { assertf( 0 ); } \
  259.   if (htsMemoryFastXfr) { \
  260.     if (sizeof(A) != sizeof(char*)) { \
  261.       (A)[sizeof(A) - 1] = '\0'; \
  262.     } \
  263.     strcpy(A, B); \
  264.     if (sizeof(A) != sizeof(char*)) { \
  265.       assertf((A)[sizeof(A) - 1] == '\0'); \
  266.     } \
  267.   } else { \
  268.     unsigned int szf = (unsigned int) strlen(B); \
  269.     if (sizeof(A) != sizeof(char*)) { \
  270.       assertf(szf + 1 < sizeof(A)); \
  271.       if (szf > 0) { \
  272.         if (szf + 1 < sizeof(A)) { \
  273.           memcpy((A), (B), szf + 1); \
  274.         } else { \
  275.           * (A) = '\0'; \
  276.         } \
  277.       } else { \
  278.         * (A) = '\0'; \
  279.       } \
  280.     } else { \
  281.       memcpybuff((A), (B), szf + 1); \
  282.     } \
  283.   } \
  284. } while(0)
  285. #define strncpybuff(A, B, N) do { \
  286.   assertf( (A) != NULL ); \
  287.   if ( ! (B) ) { assertf( 0 ); } \
  288.   if (htsMemoryFastXfr) { \
  289.     if (sizeof(A) != sizeof(char*)) { \
  290.       (A)[sizeof(A) - 1] = '\0'; \
  291.     } \
  292.     strncpy(A, B, N); \
  293.     if (sizeof(A) != sizeof(char*)) { \
  294.       assertf((A)[sizeof(A) - 1] == '\0'); \
  295.     } \
  296.   } else { \
  297.     unsigned int szf = (unsigned int) strlen(B); \
  298.     if (szf > (unsigned int) (N)) szf = (unsigned int) (N); \
  299.     if (sizeof(A) != sizeof(char*)) { \
  300.       assertf(szf + 1 < sizeof(A)); \
  301.       if (szf > 0) { \
  302.         if (szf + 1 < sizeof(A)) { \
  303.           memcpy((A), (B), szf); \
  304.         } \
  305.       } \
  306.     } else { \
  307.       memcpybuff((A), (B), szf); \
  308.     } \
  309.   } \
  310. } while(0)
  311.  
  312. #else
  313.  
  314. #ifdef STRDEBUGFAST
  315.  
  316. /* protected strcat, strncat and strcpy - definitely useful */
  317. #define strcatbuff(A, B) do { \
  318.   assertf( (A) != NULL ); \
  319.   if ( ! (B) ) { assertf( 0 ); } \
  320.   if (sizeof(A) != sizeof(char*)) { \
  321.     (A)[sizeof(A) - 1] = '\0'; \
  322.   } \
  323.   strcat(A, B); \
  324.   if (sizeof(A) != sizeof(char*)) { \
  325.     assertf((A)[sizeof(A) - 1] == '\0'); \
  326.   } \
  327. } while(0)
  328. #define strncatbuff(A, B, N) do { \
  329.   assertf( (A) != NULL ); \
  330.   if ( ! (B) ) { assertf( 0 ); } \
  331.   if (sizeof(A) != sizeof(char*)) { \
  332.     (A)[sizeof(A) - 1] = '\0'; \
  333.   } \
  334.   strncat(A, B, N); \
  335.   if (sizeof(A) != sizeof(char*)) { \
  336.     assertf((A)[sizeof(A) - 1] == '\0'); \
  337.   } \
  338. } while(0)
  339. #define strcpybuff(A, B) do { \
  340.   assertf( (A) != NULL ); \
  341.   if ( ! (B) ) { assertf( 0 ); } \
  342.   if (sizeof(A) != sizeof(char*)) { \
  343.     (A)[sizeof(A) - 1] = '\0'; \
  344.   } \
  345.   strcpy(A, B); \
  346.   if (sizeof(A) != sizeof(char*)) { \
  347.     assertf((A)[sizeof(A) - 1] == '\0'); \
  348.   } \
  349. } while(0)
  350. #define strncpybuff(A, B, N) do { \
  351.   assertf( (A) != NULL ); \
  352.   if ( ! (B) ) { assertf( 0 ); } \
  353.   if (sizeof(A) != sizeof(char*)) { \
  354.     (A)[sizeof(A) - 1] = '\0'; \
  355.   } \
  356.   strncpy(A, B, N); \
  357.   if (sizeof(A) != sizeof(char*)) { \
  358.     assertf((A)[sizeof(A) - 1] == '\0'); \
  359.   } \
  360. } while(0)
  361.  
  362. #else
  363.  
  364. #define strcatbuff strcat
  365. #define strncatbuff strncat
  366. #define strcpybuff strcpy
  367. #define strncpybuff strncpy
  368.  
  369. #endif
  370.  
  371. #endif
  372.  
  373. #endif
  374.  
  375. #ifdef __cplusplus
  376. }
  377. #endif
  378.  
  379. #endif
  380.